home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / serien / purity / nr.46 / stinglibpcq / source / copy.p next >
Text File  |  1995-03-27  |  259b  |  20 lines

  1. external;
  2.  
  3. {$I "include:utils/stringlib.i"}
  4.  
  5. function Str_Copy(s : string;dep,long : integer) : string;
  6.  
  7. var
  8.     s1 : string;
  9.     c    : integer;
  10.  
  11. begin
  12.     s1 := allocstring(long+1);
  13.     dep := dep-1;
  14.     for c := 0 to (long-1) do
  15.         s1[c] := s[c+dep];
  16.     Str_copy := s1;
  17. end;
  18.  
  19.  
  20.